Package edu.uky.ai.ml.nn
Class Layer
java.lang.Object
edu.uky.ai.ml.nn.Layer
- Direct Known Subclasses:
InputLayer
public class Layer
extends java.lang.Object
A layer is a collection of neurons in a neural network. There are two
special layers: the input and output layers. All other layers are called
hidden layers. Traditionally, all neurons at layer i are connected to
all neurons at layer i + 1.
- Author:
- Stephen G. Ware